home *** CD-ROM | disk | FTP | other *** search
/ MacHack 1996 / MacHack 1996.toast / Hacks / Hacks ’95 / What's On My Mac / DebugUtil.c < prev    next >
Encoding:
C/C++ Source or Header  |  1995-06-24  |  145 b   |  12 lines  |  [TEXT/MMCC]

  1.  
  2. #include "DebugUtil.h"
  3.  
  4. void
  5. my_assert ( Boolean passed, const char *theString )
  6. {
  7.     if ( !passed )
  8.     {
  9.         DebugStr ( (StringPtr)theString );
  10.     }
  11. }
  12.